home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / bin / c_rehash < prev    next >
Text File  |  2009-09-09  |  4KB  |  167 lines

  1. #!/usr/bin/perl
  2.  
  3.  
  4. # Perl c_rehash script, scan all files in a directory
  5. # and add symbolic links to their hash values.
  6.  
  7. my $openssl;
  8.  
  9. my $dir = "/usr/lib/ssl";
  10.  
  11. if(defined $ENV{OPENSSL}) {
  12.     $openssl = $ENV{OPENSSL};
  13. } else {
  14.     $openssl = "openssl";
  15.     $ENV{OPENSSL} = $openssl;
  16. }
  17.  
  18. $ENV{PATH} .= ":$dir/bin";
  19.  
  20. if(! -x $openssl) {
  21.     my $found = 0;
  22.     foreach (split /:/, $ENV{PATH}) {
  23.         if(-x "$_/$openssl") {
  24.             $found = 1;
  25.             last;
  26.         }    
  27.     }
  28.     if($found == 0) {
  29.         print STDERR "c_rehash: rehashing skipped ('openssl' program not available)\n";
  30.         exit 0;
  31.     }
  32. }
  33.  
  34. if(@ARGV) {
  35.     @dirlist = @ARGV;
  36. } elsif($ENV{SSL_CERT_DIR}) {
  37.     @dirlist = split /:/, $ENV{SSL_CERT_DIR};
  38. } else {
  39.     $dirlist[0] = "$dir/certs";
  40. }
  41.  
  42.  
  43. foreach (@dirlist) {
  44.     if(-d $_ and -w $_) {
  45.         hash_dir($_);
  46.     }
  47. }
  48.  
  49. sub hash_dir {
  50.     my %hashlist;
  51.     print "Doing $_[0]\n";
  52.     chdir $_[0];
  53.     opendir(DIR, ".");
  54.     my @flist = readdir(DIR);
  55.     # Delete any existing symbolic links
  56.     foreach (grep {/^[\da-f]+\.r{0,1}\d+$/} @flist) {
  57.         if(-l $_) {
  58.             unlink $_;
  59.         }
  60.     }
  61.     closedir DIR;
  62.     FILE: foreach $fname (grep {/\.pem$|\.crt$/} @flist) {
  63.         # Check to see if certificates and/or CRLs present.
  64.         my ($cert, $crl) = check_file($fname);
  65.         if(!$cert && !$crl) {
  66.             ($cert, $crl) = check_file("$openssl x509 -in \"$fname\" -inform der  -outform pem | ");
  67.             if(!$cert && !$crl) {
  68.                 print STDERR "WARNING: $fname does not contain a certificate or CRL: skipping\n";
  69.                 next;
  70.             }
  71.         }
  72.         link_hash_cert($fname) if($cert);
  73.         link_hash_crl($fname) if($crl);
  74.     }
  75. }
  76.  
  77. sub check_file {
  78.     my ($is_cert, $is_crl) = (0,0);
  79.     my $fname = $_[0];
  80.     open IN, $fname;
  81.     while(<IN>) {
  82.         if(/^-----BEGIN (.*)-----/) {
  83.             my $hdr = $1;
  84.             if($hdr =~ /^(X509 |TRUSTED |)CERTIFICATE$/) {
  85.                 $is_cert = 1;
  86.                 last if($is_crl);
  87.             } elsif($hdr eq "X509 CRL") {
  88.                 $is_crl = 1;
  89.                 last if($is_cert);
  90.             }
  91.         }
  92.     }
  93.     close IN;
  94.     return ($is_cert, $is_crl);
  95. }
  96.  
  97.  
  98. # Link a certificate to its subject name hash value, each hash is of
  99. # the form <hash>.<n> where n is an integer. If the hash value already exists
  100. # then we need to up the value of n, unless its a duplicate in which
  101. # case we skip the link. We check for duplicates by comparing the
  102. # certificate fingerprints
  103.  
  104. sub link_hash_cert {
  105.         my $fname = $_[0];
  106.         $fname =~ s/'/'\\''/g;
  107.         my ($hash, $fprint) = `"$openssl" x509 -hash -fingerprint -noout -in '$fname'`;
  108.         if(!$hash || !fprint) {
  109.             ($hash, $fprint) = `"$openssl" x509 -hash -fingerprint -noout -in '$fname' -inform der`;
  110.         }
  111.         chomp $hash;
  112.         chomp $fprint;
  113.         $fprint =~ s/^.*=//;
  114.         $fprint =~ tr/://d;
  115.         my $suffix = 0;
  116.         # Search for an unused hash filename
  117.         while(exists $hashlist{"$hash.$suffix"}) {
  118.             # Hash matches: if fingerprint matches its a duplicate cert
  119.             if($hashlist{"$hash.$suffix"} eq $fprint) {
  120.                 print STDERR "WARNING: Skipping duplicate certificate $fname\n";
  121.                 return;
  122.             }
  123.             $suffix++;
  124.         }
  125.         $hash .= ".$suffix";
  126.         print "$fname => $hash\n";
  127.         $symlink_exists=eval {symlink("",""); 1};
  128.         if ($symlink_exists) {
  129.             symlink $fname, $hash;
  130.         } else {
  131.             system ("cp", $fname, $hash);
  132.         }
  133.         $hashlist{$hash} = $fprint;
  134. }
  135.  
  136. # Same as above except for a CRL. CRL links are of the form <hash>.r<n>
  137.  
  138. sub link_hash_crl {
  139.         my $fname = $_[0];
  140.         $fname =~ s/'/'\\''/g;
  141.         my ($hash, $fprint) = `"$openssl" crl -hash -fingerprint -noout -in '$fname'`;
  142.         chomp $hash;
  143.         chomp $fprint;
  144.         $fprint =~ s/^.*=//;
  145.         $fprint =~ tr/://d;
  146.         my $suffix = 0;
  147.         # Search for an unused hash filename
  148.         while(exists $hashlist{"$hash.r$suffix"}) {
  149.             # Hash matches: if fingerprint matches its a duplicate cert
  150.             if($hashlist{"$hash.r$suffix"} eq $fprint) {
  151.                 print STDERR "WARNING: Skipping duplicate CRL $fname\n";
  152.                 return;
  153.             }
  154.             $suffix++;
  155.         }
  156.         $hash .= ".r$suffix";
  157.         print "$fname => $hash\n";
  158.         $symlink_exists=eval {symlink("",""); 1};
  159.         if ($symlink_exists) {
  160.             symlink $fname, $hash;
  161.         } else {
  162.             system ("cp", $fname, $hash);
  163.         }
  164.         $hashlist{$hash} = $fprint;
  165. }
  166.  
  167.